improve wording
authorJoey Hess <joeyh@joeyh.name>
Mon, 3 Oct 2022 17:32:55 +0000 (13:32 -0400)
committerJoey Hess <joeyh@joeyh.name>
Mon, 3 Oct 2022 17:32:55 +0000 (13:32 -0400)
This is to improve this case:

joey@darkstar:~/tmp/yyyy>git-annex trust
git-annex: no remote specified

The command does not need to be run with a remote, any repository name
will do, including eg "here".

Sponsored-by: Brock Spratlen on Patreon
Remote.hs

index 71181790e67a116616e7247cd24b15f5da9b2256..0d14d069c5beec4dee1978a53066744dae603ca9 100644 (file)
--- a/Remote.hs
+++ b/Remote.hs
@@ -144,7 +144,7 @@ byNameWithUUID = checkuuid <=< byName
                | otherwise = return $ Just r
 
 byName' :: RemoteName -> Annex (Either String Remote)
-byName' "" = return $ Left "no remote specified"
+byName' "" = return $ Left "no repository name specified"
 byName' n = go . filter matching <$> remoteList
   where
        go [] = Left $ "there is no available git remote named \"" ++ n ++ "\""